home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / c / stormamiga_lib-v45_00d / stormc_v3-examples / special / hello_world / hello_world-stormamiga.c < prev   
C/C++ Source or Header  |  2000-02-28  |  550b  |  20 lines

  1. /********************************************
  2. **                                         **
  3. **               Hello_World               **
  4. **                                         **
  5. **  Copyright 1996/98 by CyberdyneSystems  **
  6. **                                         **
  7. **        written by Matthias Henze        **
  8. **                                         **
  9. ***************** 18/09/98 *****************/
  10.  
  11. #define STORMAMIGA_NOWB
  12. #include <stormamiga.h>
  13. #include <stdio.h>
  14.  
  15. int main__ (void)
  16. {
  17.   printf_ ("Hello World!\n");
  18.   return NULL;
  19. }
  20.